407380c5109af7c6f82a4702ef163c0a69fc7cd4,editor/editor-runtime/source/jetbrains/mps/nodeEditor/cells/EditorCell_ComponentBase.java,EditorCell_ComponentBase,setX,#number#,34

Before Change


  public void setX(int x) {
    JComponent component = getComponent();
    component.setLocation(x, component.getY());
    super.setX(x);
  }

  @Override

After Change



  @Override
  public void setX(int x) {
    super.setX(x);
    getComponent().setLocation(getX(), getY());
  }